home *** CD-ROM | disk | FTP | other *** search
/ Pesquisa Dirigida / Pesquisa Dirigida.iso / JOGOS / lightning_break.swf / scripts / DefineButton2_49 / BUTTONCONDACTION on(press).as next >
Text File  |  2005-01-07  |  337b  |  21 lines

  1. on(press){
  2.    if(_root.version ne "nkcheat")
  3.    {
  4.       return undefined;
  5.    }
  6.    if(!Key.isDown(16))
  7.    {
  8.       this.mode = "aim";
  9.       aim._x = 0;
  10.       aim._y = 0;
  11.       aim._visible = true;
  12.       aim.startDrag();
  13.    }
  14.    else
  15.    {
  16.       this.mode = "move";
  17.       this.startDrag();
  18.       _root.startAim();
  19.    }
  20. }
  21.